1dd870054b9a73a0e87d77b826979a023238a7c7,src/main/java/macaca/client/MacacaClient.java,MacacaClient,waitForElementByName,#String#,831

Before Change


	 * @throws Exception
	 */
	public MacacaClient waitForElementByName(String name) throws Exception {
		waitForElement("name", name);
		return this;
	}

	/**

After Change


	 * @throws Exception
	 */
	public Element waitForElementByName(String name) throws Exception {
		return waitForElement("name", name);
	}

	/**